header {
    background-image: url("/images/services/lif-accounts-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: 50%;
    margin-bottom: 150px;
}

.header-title {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    font-size: xx-large;
    padding-top: 15%;
    padding-bottom: 20%;
    background-color: transparent;
}

@media screen and (max-width: 500px) {
    .header-title {
        font-size: x-large;
    }
    .profile-personalization-img {
        width: 100% !important;
    }
}

@media screen and (max-width: 300px) {
    .header-title {
        padding-top: 25%;
    }
}

.header-title a {
    background-color: rgb(0, 110, 255);
    border-radius: 0.5em;
    color: white;
    padding: 15px;
    box-shadow: 0 0 15px rgb(170, 170, 170);
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.header-title a:hover {
    background-color: rgb(115, 176, 255);
}

.section-a {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.section-a h1 {
    font-size: 50px;
}

.section-a p {
    font-size: large;
    padding: 0px 10px; 
}

.services {
    display: flexbox;
    margin-top: 50px;
}

.services img {
    width: 150px;
    height: 150px;
    border-radius: 1em;
    box-shadow: 0px 0px 20px gray;
    margin: 10px;
}

.section-b {
    text-align: left;
    padding: 5%;
    font-family: Arial, Helvetica, sans-serif;
}

.section-b h1 {
    font-size: 50px;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 1775px) {
    .features h1 {
        font-size: 40px;
    }
}

.features {
    display: block;
    width: 350px;
    border: 1px solid black;
    border-radius: 1em;
    margin: 0 5px 0 5px;
    padding: 10px;
    transform: translateY(50px);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

@keyframes features-animation {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.features.show {
    display: block;
    width: 350px;
    border: 1px solid black;
    border-radius: 1em;
    margin: 0 5px 0 5px;
    padding: 10px;
    transition: ease-in-out 0.3s;
    animation-fill-mode: forwards;
}

.features.show:nth-of-type(1) {
    animation-name: features-animation;
    animation-duration: 0.3s;
    animation-delay: 0;
}

.features.show:nth-of-type(2) {
    animation-name: features-animation;
    animation-duration: 0.3s;
    animation-delay: 0.1s; /* Delayed by 1 second */
}

.features.show:nth-of-type(3) {
    animation-name: features-animation;
    animation-duration: 0.3s;
    animation-delay: 0.2s; /* Delayed by 2 seconds */
}

.profile-personalization-img {
    width: 70%;
}